home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_Tiles_Glass.PspScript < prev    next >
Encoding:
Text File  |  2003-04-22  |  636 b   |  29 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': '',
  6.         'Copyright': '',
  7.         'Description': ''
  8.         }
  9.  
  10. def Preset_Tiles():
  11.     return {
  12.         'Ambience': 0, 
  13.         'Angle': 315, 
  14.         'BorderSize': 1, 
  15.         'Color': (255,255,255), 
  16.         'Depth': 35, 
  17.         'Elevation': 60, 
  18.         'Intensity': 50, 
  19.         'Shininess': 0, 
  20.         'Smoothness': 23, 
  21.         'TileAngularity': 15, 
  22.         'TileShape': App.Constants.TileShape.Square, 
  23.         'TileSize': 20
  24.         }
  25.  
  26. def Do(Environment):
  27.     App.Do(Environment,  'Tiles',         Preset_Tiles())
  28.  
  29.